home *** CD-ROM | disk | FTP | other *** search
/ Hyper Erect Magazine / Hyper Erect Magazine - Disc 2.iso / pc / m_bro_w.dxr / 00008.ls < prev    next >
Encoding:
Text File  |  1997-04-11  |  674 b   |  23 lines

  1. on mouseDown
  2.   global gmtype, movietime_g, movierate_g
  3.   set tclick to the clickOn
  4.   if (gmtype = 1) and (the movieRate of sprite 9 = 0) then
  5.     puppetSound("CLICK")
  6.   end if
  7.   set the visible of sprite (tclick + 3) to 0
  8.   updateStage()
  9.   waittimer(1)
  10.   set the visible of sprite 6 to 0
  11.   set the visible of sprite 7 to 0
  12.   updateStage()
  13.   set movietime_g to the movieTime of sprite 9
  14.   set movierate_g to the movieRate of sprite 9
  15.   set the movieRate of sprite 9 to 0
  16.   set the visible of sprite 9 to 0
  17.   updateStage()
  18.   go(the frame - 1)
  19.   set the movieTime of sprite 9 to movietime_g
  20.   set the movieRate of sprite 9 to movierate_g
  21.   set the visible of sprite 9 to 1
  22. end
  23.